home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG: World of Games / PC-SIG World of Games (CDRM1080710) (1993).iso / 1691 / JOBJAR < prev    next >
Text File  |  1990-09-11  |  966b  |  52 lines

  1. /*
  2.  * Sample source file for "chaos" -- a "job jar" template
  3.  */
  4. job!u : {Clean the $thing}
  5.     | {Walk the dog}
  6.     | {Clean the $thing}
  7.     | {Write a $write}
  8.     | {Organize $org}
  9.     | {Do the laundry}
  10.     | {Write a $write}
  11.     | {Organize $org}
  12.     | {Pay the bills}
  13.     | {Clean the $thing}
  14.     | {Write a $write}
  15.     | {Organize $org}
  16.     | {Paint the $room}
  17.     | {Organize $org}
  18.     | {Clean the $thing}
  19.     ;
  20.  
  21. thing!u: {car}
  22.      | {$room}
  23.      | {shower}
  24.      | {windows}
  25.      ;
  26.  
  27. room!u: {bathroom}
  28.      | {garage}
  29.      | {bedroom}
  30.      | {living room}
  31.      | {family room}
  32.      | {closets}
  33.      | {dining room}
  34.      | {kitchen}
  35.      ;
  36.  
  37. write!u: {letter to a friend}
  38.      | {letter to a family member}
  39.      | {list of your own "jobs" to put here}
  40.      ;
  41.  
  42. make: {something healthy from a new recipe}
  43.     | {something artistic}
  44.     ;
  45.  
  46. org!u: {the kitchen cabinets}
  47.    | {the tools}
  48.    | {your desk}
  49.    | {your legal papers and bills}
  50.    | {your stereo and video stuff}
  51.    ;
  52.